home *** CD-ROM | disk | FTP | other *** search
- package mx.containers
- {
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class TitleWindow extends Panel
- {
- mx_internal static var createAccessibilityImplementation:Function;
-
- mx_internal static const VERSION:String = "2.0.1.0";
-
- public function TitleWindow()
- {
- super();
- }
-
- public function get showCloseButton() : Boolean
- {
- return mx_internal::_showCloseButton;
- }
-
- public function set showCloseButton(param1:Boolean) : void
- {
- mx_internal::_showCloseButton = param1;
- }
-
- override protected function initializeAccessibility() : void
- {
- if(TitleWindow.mx_internal::createAccessibilityImplementation != null)
- {
- TitleWindow.mx_internal::createAccessibilityImplementation(this);
- }
- }
- }
- }
-
-